home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _GUICtrlStatusBarGetText.au3 < prev    next >
Text File  |  2006-08-01  |  920b  |  32 lines

  1. opt("MustDeclareVars", 1)
  2.  
  3. #include <GUIConstants.au3>
  4. #Include <GuiStatusBar.au3>
  5.  
  6. Local $gui, $StatusBar1, $msg, $lbl_Info
  7. Local $a_PartsRightEdge[3] = [100, 350, -1]
  8. Local $a_PartsText[3] = ["New Text", "More Text", "Even More Text"]
  9.  
  10. $gui = GUICreate("Status Bar Get Text", 500, -1, -1, -1, $WS_SIZEBOX)
  11. $lbl_Info = GUICtrlCreateLabel("", 10, 10, 150, 50, $SS_SUNKEN)
  12. $StatusBar1 = _GUICtrlStatusBarCreate ($gui, $a_PartsRightEdge, $a_PartsText)
  13.  
  14. GUICtrlSetData($lbl_Info, "1st Part: " & _GUICtrlStatusBarGetText ($StatusBar1, 0) & @LF & _
  15.         "2nd Part: " & _GUICtrlStatusBarGetText ($StatusBar1, 1) & @LF & _
  16.         "3rd Part: " & _GUICtrlStatusBarGetText ($StatusBar1, 2))
  17.  
  18. GUISetState(@SW_SHOW)
  19.  
  20.  
  21. While 1
  22.     $msg = GUIGetMsg()
  23.     Select
  24.         Case $msg = $GUI_EVENT_RESIZED
  25.             _GUICtrlStatusBarResize ($StatusBar1)
  26.         Case $msg = $GUI_EVENT_CLOSE
  27.             ExitLoop
  28.         Case Else
  29.             ;;;;;
  30.     EndSelect
  31.     
  32. WEnd